home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / x11 / strategy / xpuzzles.3 / xpuzzles / xpuzzles-5.3.1 / xdino / Dino.h < prev    next >
C/C++ Source or Header  |  1996-04-02  |  2KB  |  93 lines

  1. /*
  2. # X-BASED DINOSAUR CUBE
  3. #
  4. #  Dino.h
  5. #
  6. ###
  7. #
  8. #  Copyright (c) 1995 - 96    David Albert Bagley, bagleyd@hertz.njit.edu
  9. #
  10. #                   All Rights Reserved
  11. #
  12. #  Permission to use, copy, modify, and distribute this software and
  13. #  its documentation for any purpose and without fee is hereby granted,
  14. #  provided that the above copyright notice appear in all copies and
  15. #  that both that copyright notice and this permission notice appear in
  16. #  supporting documentation, and that the name of the author not be
  17. #  used in advertising or publicity pertaining to distribution of the
  18. #  software without specific, written prior permission.
  19. #
  20. #  This program is distributed in the hope that it will be "playable",
  21. #  but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. #
  24. */
  25.  
  26. /* Public header file for Dino */
  27.  
  28. #ifndef _XtDino_h
  29. #define _XtDino_h
  30.  
  31. /***********************************************************************
  32.  *
  33.  * Dino Widget
  34.  *
  35.  ***********************************************************************/
  36.  
  37. #define XtNselectCallback "selectCallback"
  38. #define XtNmode "mode"
  39. #define XtNorient "orient"
  40. #define XtNmono "mono"
  41. #define XtNface "face"
  42. #define XtNpos "position"
  43. #define XtNdirection "direction"
  44. #define XtNstyle "style"
  45. #define XtNpractice "practice"
  46. #define XtNstart "start"
  47. #define XtNpieceBorder "pieceBorder"
  48. #define XtNfaceColor0 "faceColor0"
  49. #define XtNfaceColor1 "faceColor1"
  50. #define XtNfaceColor2 "faceColor2"
  51. #define XtNfaceColor3 "faceColor3"
  52. #define XtNfaceColor4 "faceColor4"
  53. #define XtNfaceColor5 "faceColor5"
  54. #define XtCMode "Mode"
  55. #define XtCOrient "Orient"
  56. #define XtCMono "Mono"
  57. #define XtCFace "Face"
  58. #define XtCPos "Position"
  59. #define XtCDirection "Direction"
  60. #define XtCStyle "Style"
  61.  
  62. #define DINO_RESTORE (-4)
  63. #define DINO_RESET (-3)
  64. #define DINO_ILLEGAL (-2)
  65. #define DINO_IGNORE (-1)
  66. #define DINO_MOVED 0
  67. #define DINO_CONTROL 1
  68. #define DINO_SOLVED 2
  69. #define DINO_PRACTICE 3
  70. #define DINO_RANDOMIZE 4
  71. #define DINO_DEC 5
  72. #define DINO_ORIENT 6
  73. #define DINO_INC 7
  74. #define DINO_PERIOD2 8
  75. #define DINO_PERIOD3 9
  76. #define DINO_BOTH 10
  77. #define DINO_COMPUTED 11
  78. #define DINO_UNDO 12 
  79.  
  80. typedef struct _DinoClassRec *DinoWidgetClass;
  81. typedef struct _DinoRec *DinoWidget;
  82.  
  83. extern WidgetClass dinoWidgetClass;
  84.  
  85. typedef struct {
  86.   XEvent *event;
  87.   int reason;
  88.   int face, position, direction, style;
  89. } dinoCallbackStruct;
  90.  
  91. #endif _XtDino_h
  92. /* DON'T ADD STUFF AFTER THIS #endif */
  93.